<style>
* {box-sizing: border-box}
.homeSlides {display: none}
img {vertical-align: middle;}

/* INDEX BANNER */

.index-bnr-container {
	max-width: 1000px;
	position: relative;
	margin: 5px auto auto auto;
	background-color: transparent;
	border-radius: 5px;
	width: 98%;
	position: relative;
	background-color: transparent;
	/* box-shadow: 0px 0px 5px 2px #075eea; */
	/* border: 3px solid #4d4d4d; */
}

#index-bnr-Img {
	border-radius: 5px;
	width: 100%
}

#homeSlideslink {
	text-decoration: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	padding: 16px;
	margin-top: 0px;
	color: #e3e3e3;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	text-decoration: none;
}

a .prev, .next {
	cursor: pointer;
	text-decoration: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.4);
	text-decoration: none;
} */


/* Caption text */
.home-slide-text {
	color: #e3e3e3;
	font-size: min(3.5vw, 36px);
	padding: 16px 12px;
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,8));
	border-radius: 0px 0px 5px 5px;
}

/* The dots/bullets/indicators */
.index-bnr-dot {
	cursor: pointer;
	height: 3px;
	width: 20px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 10%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

/* Active dot */
.index-bnr-dot.active, .index-bnr-dot:hover {
	background-color: #333;
}

/* Position the dots at the bottom center */
.index-bnr-dot-container {
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

/* Fading animation */
.home-slide-fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes home-slide-fade {
	from {opacity: .4} 
	to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.prev, .next,.home-slide-text {font-size: 11px}
}
</style>